home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / mint / lib / mntlib44.zoo / mntlib / atoi.c < prev    next >
C/C++ Source or Header  |  1994-03-01  |  225b  |  14 lines

  1. #include <stddef.h>
  2. #include <stdlib.h>
  3. #include <assert.h>
  4.  
  5. __EXTERN long strtol __PROTO((const char *, char **, int));
  6.  
  7. int
  8. atoi(str)
  9. const char *str;
  10. {
  11.     assert ((str != NULL));
  12.     return (int) strtol(str, (char **)0, 10);
  13. }
  14.